home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Turnbull China Bikeride
/
Turnbull China Bikeride - Disc 2.iso
/
STUTTGART
/
LANG
/
C
/
LIB
/
UNIXLIB37B
/
!UnixLib37
/
src
/
pwd
/
c
/
putpwent
< prev
next >
Wrap
Text File
|
1996-11-09
|
1KB
|
45 lines
/****************************************************************************
*
* $Source: /unixb/home/unixlib/source/unixlib37/src/pwd/c/RCS/putpwent,v $
* $Date: 1996/10/30 22:04:51 $
* $Revision: 1.1 $
* $State: Rel $
* $Author: unixlib $
*
* $Log: putpwent,v $
* Revision 1.1 1996/10/30 22:04:51 unixlib
* Initial revision
*
***************************************************************************/
static const char rcs_id[] = "$Id: putpwent,v 1.1 1996/10/30 22:04:51 unixlib Rel $";
/* pwd.c.putpwent. Write an entry to stream.
System V compatibility function.
Written by Nick Burrett, 13 October 1996. */
#include <errno.h>
#include <stdio.h>
#include <pwd.h>
/* Write an entry to the given stream.
This must know the format of the password file. */
int
putpwent (const struct passwd *p, FILE *stream)
{
if (p == NULL || stream == NULL)
{
errno = EINVAL;
return -1;
}
if (fprintf (stream, "%s:%s:%u:%u:%s:%s:%s\n",
p->pw_name, p->pw_passwd,
p->pw_uid, p->pw_gid,
p->pw_gecos, p->pw_dir, p->pw_shell) < 0)
return -1;
return 0;
}